// These functions "claim" their arguments
void
waypt_add(Waypoint* wpt) {
- __coverity_escape__;
+ __coverity_escape__(wpt);
}
void track_add_head(route_head* rte) {
- __coverity_escape__;
+ __coverity_escape__(rte);
}
void route_add_head(route_head* rte) {
- __coverity_escape__;
+ __coverity_escape__(rte);
}
void route_add_wpt(route_head* rte, Waypoint* wpt) {
- __coverity_escape__;
+ __coverity_escape__(wpt);
}
void track_add_wpt(route_head* rte, Waypoint* wpt) {
- __coverity_escape__;
+ __coverity_escape__(wpt);
}
void route_add_wpt_named(route_head* rte, Waypoint* wpt,
const QString& namepart, int number_digits) {
- __coverity_escape__;
+ __coverity_escape__(wpt);
}